home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mintmisc / flipper.c < prev    next >
C/C++ Source or Header  |  1992-03-05  |  747b  |  33 lines

  1. /* Flipper
  2.  * 
  3.  * Little deskaccessory that speeds up MiNT background processes, if run 
  4.  * under GEM. Compile as FLIPPER.ACC
  5.  * It does not matter, if started without MiNT...
  6.  * 
  7.  * Karsten Isakovic @ B
  8.  */
  9.  
  10. #include <aes.h>
  11. #include <tos.h>
  12.  
  13. #define Syield() gemdos(255)
  14.  
  15. void main(void)
  16. {
  17. int d,apid,event,msg[8];
  18.  
  19.  apid = appl_init();
  20.  if (!_app && apid>=0) {
  21.    while(1) {
  22.      event = evnt_multi(MU_TIMER|MU_MESAG,1,1,1,
  23.                   0,0,0,0,0,  0,0,0,0,0,
  24.                    msg,50,0,
  25.                    &d,&d,&d,&d,&d,&d);
  26.      if (event&MU_MESAG)
  27.        form_alert(1,"[0][    --  Flipper --   | | A tiny MiNT background  |"
  28.                     " process speeder...  | ][©92 K.Isakovic]");
  29.      Syield();
  30.      }
  31.    }
  32. }
  33.